ed4c0d24df7824e2ecbb843b29bb52227daac9c6,src/org/kde/kdeconnect/Plugins/SharePlugin/SharePlugin.java,SharePlugin,onPackageReceived,#NetworkPackage#,104

Before Change



                    NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
                    try {
                        notificationManager.notify((int) System.currentTimeMillis(), noti);
                    } catch (Exception e) {
                        //4.1 will throw an exception about not having the VIBRATE permission, ignore it.
                        //https://android.googlesource.com/platform/frameworks/base/+/android-4.2.1_r1.2%5E%5E!/

After Change


                            .build();

                    NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
                    NotificationHelper.notifyCompat(notificationManager, (int) System.currentTimeMillis(), noti);
                }
            } else {
                Log.e("SharePlugin", "Error: Nothing attached!");